home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2005 October / PCWOCT05.iso / Software / FromTheMag / XAMPP 1.4.14 / xampp-win32-1.4.14-installer.exe / xampp / phpMyAdmin / tbl_addfield.php < prev    next >
PHP Script  |  2005-04-01  |  11KB  |  273 lines

  1. <?php
  2. /* $Id: tbl_addfield.php,v 2.14 2005/04/01 17:03:32 lem9 Exp $ */
  3. // vim: expandtab sw=4 ts=4 sts=4:
  4.  
  5. /**
  6.  * Get some core libraries
  7.  */
  8. require_once('./libraries/grab_globals.lib.php');
  9. $js_to_run = 'functions.js';
  10. require_once('./header.inc.php');
  11.  
  12. // Check parameters
  13. PMA_checkParameters(array('db', 'table'));
  14.  
  15.  
  16. /**
  17.  * Defines the url to return to in case of error in a sql statement
  18.  */
  19. $err_url = 'tbl_properties.php?' . PMA_generate_common_url($db, $table);
  20.  
  21. /**
  22.  * The form used to define the field to add has been submitted
  23.  */
  24. $abort = false;
  25. if (isset($submit_num_fields)) {
  26.     if (isset($orig_after_field)) {
  27.         $after_field = $orig_after_field;
  28.     }
  29.     if (isset($orig_field_where)) {
  30.         $field_where = $orig_field_where;
  31.     }
  32.     $num_fields = $orig_num_fields + $added_fields;
  33.     $regenerate = TRUE;
  34. } else if (isset($do_save_data)) {
  35.     $query = '';
  36.  
  37.     // Transforms the radio button field_key into 3 arrays
  38.     $field_cnt = count($field_name);
  39.     for ($i = 0; $i < $field_cnt; ++$i) {
  40.         if (isset(${'field_key_' . $i})) {
  41.             if (${'field_key_' . $i} == 'primary_' . $i) {
  42.                 $field_primary[] = $i;
  43.             }
  44.             if (${'field_key_' . $i} == 'index_' . $i) {
  45.                 $field_index[]   = $i;
  46.             }
  47.             if (${'field_key_' . $i} == 'unique_' . $i) {
  48.                 $field_unique[]  = $i;
  49.             }
  50.         } // end if
  51.     } // end for
  52.     // Builds the field creation statement and alters the table
  53.  
  54.     // TODO: check to see if this logic is exactly the same
  55.     //       as in tbl_create.php, and move to an include file
  56.  
  57.     for ($i = 0; $i < $field_cnt; ++$i) {
  58.         // '0' is also empty for php :-(
  59.         if (empty($field_name[$i]) && $field_name[$i] != '0') {
  60.             continue;
  61.         }
  62.  
  63.         $query .= PMA_backquote($field_name[$i]) . ' ' . $field_type[$i];
  64.         if ($field_length[$i] != ''
  65.             && !preg_match('@^(DATE|DATETIME|TIME|TINYBLOB|TINYTEXT|BLOB|TEXT|MEDIUMBLOB|MEDIUMTEXT|LONGBLOB|LONGTEXT)$@i', $field_type[$i])) {
  66.             $query .= '(' . $field_length[$i] . ')';
  67.         }
  68.         if ($field_attribute[$i] != '') {
  69.             $query .= ' ' . $field_attribute[$i];
  70.         } else if (PMA_MYSQL_INT_VERSION >= 40100 && isset($field_collation[$i]) && $field_collation[$i] != '') {
  71.             list($tmp_charset) = explode('_', $field_collation[$i]);
  72.             $query .= ' CHARACTER SET ' . $tmp_charset . ' COLLATE ' . $field_collation[$i];
  73.             unset($tmp_charset);
  74.         }
  75.  
  76.         if (isset($field_default_current_timestamp[$i]) && $field_default_current_timestamp[$i]) {
  77.             $query .= ' DEFAULT CURRENT_TIMESTAMP';
  78.         } elseif ($field_default[$i] != '') {
  79.             if (strtoupper($field_default[$i]) == 'NULL') {
  80.                 $query .= ' DEFAULT NULL';
  81.             } else {
  82.                 $query .= ' DEFAULT \'' . PMA_sqlAddslashes($field_default[$i]) . '\'';
  83.             }
  84.         }
  85.         if ($field_null[$i] != '') {
  86.             $query .= ' ' . $field_null[$i];
  87.         }
  88.         if ($field_extra[$i] != '') {
  89.             $query .= ' ' . $field_extra[$i];
  90.             // An auto_increment field must be use as a primary key
  91.             if ($field_extra[$i] == 'AUTO_INCREMENT' && isset($field_primary)) {
  92.                 $primary_cnt = count($field_primary);
  93.                 for ($j = 0; $j < $primary_cnt && $field_primary[$j] != $i; $j++) {
  94.                     // void
  95.                 } // end for
  96.                 if ($field_primary[$j] == $i) {
  97.                     $query .= ' PRIMARY KEY';
  98.                     unset($field_primary[$j]);
  99.                 } // end if
  100.             } // end if (auto_increment)
  101.         }
  102.  
  103.         if ($field_where != 'last') {
  104.             // Only the first field can be added somewhere other than at the end
  105.             if ($i == 0) {
  106.                 if ($field_where == 'first') {
  107.                     $query .= ' FIRST';
  108.                 } else {
  109.                     $query .= ' AFTER ' . PMA_backquote(urldecode($after_field));
  110.                 }
  111.             } else {
  112.                 $query .= ' AFTER ' . PMA_backquote($field_name[$i-1]);
  113.             }
  114.         }
  115.         $query .= ', ADD ';
  116.     } // end for
  117.     $query = preg_replace('@, ADD $@', '', $query);
  118.  
  119.     // To allow replication, we first select the db to use and then run queries
  120.     // on this db.
  121.     PMA_DBI_select_db($db) or PMA_mysqlDie(PMA_getError(), 'USE ' . PMA_backquotes($db), '', $err_url);
  122.     $sql_query     = 'ALTER TABLE ' . PMA_backquote($table) . ' ADD ' . $query;
  123.     $error_create = FALSE;
  124.     PMA_DBI_try_query($sql_query) or $error_create = TRUE;
  125.  
  126.     if ($error_create == false) {
  127.  
  128.         $sql_query_cpy = $sql_query . ';';
  129.  
  130.         // Builds the primary keys statements and updates the table
  131.         $primary = '';
  132.         if (isset($field_primary)) {
  133.             $primary_cnt = count($field_primary);
  134.             for ($i = 0; $i < $primary_cnt; $i++) {
  135.                 $j       = $field_primary[$i];
  136.                 if (!empty($field_name[$j])) {
  137.                     $primary .= PMA_backquote($field_name[$j]) . ', ';
  138.                 }
  139.             } // end for
  140.             $primary     = preg_replace('@, $@', '', $primary);
  141.             if (!empty($primary)) {
  142.                 $sql_query      = 'ALTER TABLE ' . PMA_backquote($table) . ' ADD PRIMARY KEY (' . $primary . ');';
  143.                 $result         = PMA_DBI_query($sql_query);
  144.                 $sql_query_cpy  .= "\n" . $sql_query . ';';
  145.             }
  146.         } // end if
  147.  
  148.         // Builds the indexes statements and updates the table
  149.         $index = '';
  150.         if (isset($field_index)) {
  151.             $index_cnt = count($field_index);
  152.             for ($i = 0; $i < $index_cnt; $i++) {
  153.                 $j     = $field_index[$i];
  154.                 if (!empty($field_name[$j])) {
  155.                     $index .= PMA_backquote($field_name[$j]) . ', ';
  156.                 }
  157.             } // end for
  158.             $index     = preg_replace('@, $@', '', $index);
  159.             if (!empty($index)) {
  160.                 $sql_query      = 'ALTER TABLE ' . PMA_backquote($table) . ' ADD INDEX (' . $index . ')';
  161.                 $result         = PMA_DBI_query($sql_query);
  162.                 $sql_query_cpy  .= "\n" . $sql_query . ';';
  163.             }
  164.         } // end if
  165.  
  166.         // Builds the uniques statements and updates the table
  167.         $unique = '';
  168.         if (isset($field_unique)) {
  169.             $unique_cnt = count($field_unique);
  170.             for ($i = 0; $i < $unique_cnt; $i++) {
  171.                 $j      = $field_unique[$i];
  172.                 if (!empty($field_name[$j])) {
  173.                     $unique .= PMA_backquote($field_name[$j]) . ', ';
  174.                 }
  175.             } // end for
  176.             $unique = preg_replace('@, $@', '', $unique);
  177.             if (!empty($unique)) {
  178.                 $sql_query      = 'ALTER TABLE ' . PMA_backquote($table) . ' ADD UNIQUE (' . $unique . ')';
  179.                 $result         = PMA_DBI_query($sql_query);
  180.                 $sql_query_cpy  .= "\n" . $sql_query . ';';
  181.             }
  182.         } // end if
  183.  
  184.  
  185.         // Builds the fulltext statements and updates the table
  186.         $fulltext = '';
  187.         if (isset($field_fulltext)) {
  188.             $fulltext_cnt = count($field_fulltext);
  189.             for ($i = 0; $i < $fulltext_cnt; $i++) {
  190.                 $j        = $field_fulltext[$i];
  191.                 $fulltext .= PMA_backquote($field_name[$j]) . ', ';
  192.             } // end for
  193.             $fulltext = preg_replace('@, $@', '', $fulltext);
  194.             if (!empty($fulltext)) {
  195.                 $sql_query      = 'ALTER TABLE ' . PMA_backquote($table) . ' ADD FULLTEXT (' . $fulltext . ')';
  196.                 $result         = PMA_DBI_query($sql_query);
  197.                 $sql_query_cpy  .= "\n" . $sql_query . ';';
  198.             }
  199.         } // end if
  200.  
  201.         // garvin: If comments were sent, enable relation stuff
  202.         require_once('./libraries/relation.lib.php');
  203.         require_once('./libraries/transformations.lib.php');
  204.  
  205.         $cfgRelation = PMA_getRelationsParam();
  206.  
  207.         // garvin: Update comment table, if a comment was set.
  208.         // lem9: FIXME: here we take care of native comments and
  209.         //       pmadb-style comments, however, in the case of
  210.         //       native comments, users do not see the COMMENT clause
  211.         //       when SQL query is displayed
  212.         if (isset($field_comments) && is_array($field_comments) && ($cfgRelation['commwork'] || PMA_MYSQL_INT_VERSION >= 40100)) {
  213.             foreach ($field_comments AS $fieldindex => $fieldcomment) {
  214.                 PMA_setComment($db, $table, $field_name[$fieldindex], $fieldcomment);
  215.             }
  216.         }
  217.  
  218.         // garvin: Update comment table for mime types [MIME]
  219.         if (isset($field_mimetype) && is_array($field_mimetype) && $cfgRelation['commwork'] && $cfgRelation['mimework'] && $cfg['BrowseMIME']) {
  220.             foreach ($field_mimetype AS $fieldindex => $mimetype) {
  221.                 PMA_setMIME($db, $table, $field_name[$fieldindex], $mimetype, $field_transformation[$fieldindex], $field_transformation_options[$fieldindex]);
  222.             }
  223.         }
  224.  
  225.         // Go back to the structure sub-page
  226.         $sql_query = $sql_query_cpy;
  227.         unset($sql_query_cpy);
  228.         $message   = $strTable . ' ' . htmlspecialchars($table) . ' ' . $strHasBeenAltered;
  229.         $active_page = 'tbl_properties_structure.php';
  230.         require('./tbl_properties_structure.php');
  231.     } else {
  232.         PMA_mysqlDie('', '', '', $err_url, FALSE);
  233.         // garvin: An error happened while inserting/updating a table definition.
  234.         // to prevent total loss of that data, we embed the form once again.
  235.         // The variable $regenerate will be used to restore data in tbl_properties.inc.php
  236.         $num_fields = $orig_num_fields;
  237.         if (isset($orig_after_field)) {
  238.             $after_field = $orig_after_field;
  239.         }
  240.         if (isset($orig_field_where)) {
  241.             $field_where = $orig_field_where;
  242.         }
  243.         $regenerate = true;
  244.     }
  245. } // end do alter table
  246.  
  247. /**
  248.  * Displays the form used to define the new field
  249.  */
  250. if ($abort == FALSE) {
  251.     /**
  252.      * Gets tables informations
  253.      */
  254.     require('./tbl_properties_common.php');
  255.     require('./tbl_properties_table_info.php');
  256.     /**
  257.      * Displays top menu links
  258.      */
  259.     $active_page = 'tbl_properties_structure.php';
  260.     require('./tbl_properties_links.php');
  261.     /**
  262.      * Display the form
  263.      */
  264.     $action = 'tbl_addfield.php';
  265.     require('./tbl_properties.inc.php');
  266.  
  267.     // Diplays the footer
  268.     echo "\n";
  269.     require_once('./footer.inc.php');
  270. }
  271.  
  272. ?>
  273.